home *** CD-ROM | disk | FTP | other *** search
/ Champak 148 / (Vol 148) Feb 07 2012.iso / Games / pet_1328.swf / scripts / DefineButton2_123 / BUTTONCONDACTION on(keyPress Down).as next >
Text File  |  2012-02-07  |  335b  |  16 lines

  1. on(keyPress "<Down>"){
  2.    if(getProperty(dog, _Y) >= 480)
  3.    {
  4.       setProperty("dog", _Y, 0);
  5.    }
  6.    setProperty("dog", _rotation, 180);
  7.    if(!(150 >= getProperty(dog, _X) && getProperty(dog, _Y) == 250))
  8.    {
  9.       setProperty("dog", _Y, getProperty(dog, _Y) + 10);
  10.    }
  11.    with(dog)
  12.    {
  13.       nextFrame();
  14.    }
  15. }
  16.